home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / Software / Vyzkuste / winhex / POS File Format.txt < prev    next >
Text File  |  2001-02-05  |  657b  |  27 lines

  1. template "POS File Format"
  2.  
  3. // Template by Stefan Fleischmann
  4. // More detailed description of the POS file format
  5. // available from http://www.winhex.com .
  6.  
  7. description "Structure of a WinHex position file (.pos)"
  8. appliesto file
  9. requires 0 "57 69 6E 48 65 78 20 50 6F 73 20 76 31 2E 31"
  10.  
  11. begin
  12.     char[16]    "File signature"
  13.     int32        "# of positions"
  14.     
  15.     numbering 1
  16.     {
  17.     section    "Position #~"
  18.     int64        "Offset (decimal)"
  19.     FILETIME    "Recorded on"
  20.     read-only byte        "Description length"
  21.     char[Description length] "Description"
  22.     endsection
  23.     } [# of positions]
  24.  
  25.     // some text strings for internal use may follow
  26.     // ignored by this template
  27. end